home *** CD-ROM | disk | FTP | other *** search
-
- (*
- ** Autodesk Annimator CEL unit
- ** Support for SVGA resolutions is implemented,
- ** although you won't see those much...
- **
- ** Made by Bas van Gaalen
- *)
-
- unit u_ffcel;
-
- interface
-
- uses dos,graph,u_pal;
-
- const
- cel_ok=0;
- cel_nofile=1;
- cel_invalid=2;
- cel_nocreate=3;
- cel_errfile=4;
- cel_nomem=5;
-
- type
- cel_inforec=record
- xres,yres:word;
- pixs:byte;
- end;
-
- var
- cel_status:byte;
-
- function cel_errstr:string;
- function cel_load(fname:pathstr; var pic:pointer; var pal:pal_type):byte;
- function cel_display(fname,bgipath:pathstr; vidmode:shortint):byte;
- function cel_info(fname:pathstr; var info:cel_inforec):byte;
-
- implementation
-
-